home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue29 / art_tips / ART_TIPS.ZIP / Tips / Examples / Win16 / UNITMAIN.DFM / UNITMAIN.txt
Encoding:
Text File  |  1997-06-04  |  903 b   |  32 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 108
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'Tips system sample'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   OnActivate = FormActivate
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   TextHeight = 13
  16.   object Tips1: TTips
  17.     Title = 'Tips system'
  18.     TipsHelp = 'Did you know...'
  19.     TipsToShow.Strings = (
  20.       'Hello and Welcome to the Tips system...!'
  21.       'User can edit the tips by pressing "Edit button".'
  22.       
  23.         'If "ofShowBtnEdit" in "Options" then  Tips system will use loade' +
  24.         'd from stream  or file Tips. Otherwise will use default ones.'
  25.       'You can specify events for each button clicking.'
  26.       'User can change order of tips using "Drag and Drop".'
  27.       'User can add own notes / tips ("Add" button).')
  28.     Left = 16
  29.     Top = 232
  30.   end
  31. end
  32.